home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
blankery
/
blanker
/
source
/
blankers
/
moire
/
defaults.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-25
|
386b
|
20 lines
#include <exec/types.h>
#include <intuition/screens.h>
#include "/defs.h"
struct mPrefObject {
LONG xSpeed, ySpeed, Trail, numLines, Cycle;
};
VOID defaults( struct bMessage *bMsg )
{
static struct mPrefObject mPO = { 16L, 16L, 64L, 2, 0L };
bMsg->bm_Mod = INVALID_ID;
bMsg->bm_Dep = 0;
bMsg->bm_Info = "Moire (Bouncing lines) Module";
bMsg->bm_Data = ( UBYTE * )( &mPO );
}